home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Comms & Internet / DXF to VRML97 1.0.1 / src / DropUNIX Lib / Lib Sources / DropShell.c next >
Text File  |  1999-08-26  |  7KB  |  290 lines

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DropShell.c
  5. **
  6. **   Description:    Main application code for the QuickShell
  7. **
  8. *******************************************************************************
  9. **                       A U T H O R   I D E N T I T Y
  10. *******************************************************************************
  11. **
  12. **    Initials    Name
  13. **    --------    -----------------------------------------------
  14. **    LDR            Leonard Rosenthol
  15. **    MTC            Marshall Clow
  16. **    SCS            Stephan Somogyi
  17. **
  18. *******************************************************************************
  19. **                      R E V I S I O N   H I S T O R Y
  20. *******************************************************************************
  21. **
  22. **      Date        Author    Description
  23. **    ---------    ------    ---------------------------------------------
  24. **    04/15/96    RWD        Removed #ifndef __MWERKS__ which caused problems
  25. **                        when not using Precompiled Headers.
  26. **    23 Jun    94    LDR        Implemented support for disk insertion events
  27. **    02 Feb    94    LDR        Updated for Final SDK & CodeWarrior a2
  28. **                        Removed the ResumeProc as per new Apple recommendations
  29. **    11 Dec 93    SCS        Universal Headers/UPPs (Phoenix 68k/PPC & PPCC)
  30. **                        Skipped System 6 compatible rev of DropShell source
  31. **    09 Dec 91    LDR        Added support for new "Select File…" menu item
  32. **                        Quit now sends AEVT to self to be politically correct
  33. **                        Added support for the new gSplashScreen
  34. **    24 Nov 91    LDR        Added support for the Apple Menu (duh!)
  35. **    29 Oct 91    SCS        Changes for THINK C 5
  36. **    28 Oct 91    LDR        Officially renamed DropShell (from QuickShell)
  37. **                        Added a bunch of comments for clarification
  38. **    06 Oct 91    MTC        Converted to MPW C
  39. **    09 Apr 91    LDR        Added to Projector
  40. **
  41. ******************************************************************************/
  42.  
  43. #include <Devices.h>
  44. #include <Events.h>
  45. #include <Dialogs.h>
  46. #include <Errors.h>
  47. #include <Files.h>
  48. #include <Fonts.h>
  49. #include <Memory.h>
  50. #include <Menus.h>
  51. #include <StandardFile.h>
  52. #include <TextEdit.h>
  53. #include <Types.h>
  54. #include <Windows.h>
  55. #include <DiskInit.h>
  56.  
  57. #include "DSGlobals.h"
  58. #include "DSUtils.h"
  59. #include "DSUserProcs.h"
  60. #include "DSAppleEvents.h"
  61.  
  62. #include "DropShell.h"
  63.  
  64. Boolean        gDone, gOApped, gHasAppleEvents, gWasEvent;
  65. EventRecord    gEvent;
  66. MenuHandle    gAppleMenu, gFileMenu;
  67. WindowPtr    gSplashScreen;
  68.  
  69. #ifdef MPW
  70. extern void _DataInit();    
  71. #endif
  72.  
  73. void InitToolbox (void) 
  74. {
  75.  
  76. #ifdef MPW
  77.     UnloadSeg ((Ptr) _DataInit );
  78. #endif
  79.  
  80.     InitGraf ( &qd.thePort );
  81.     InitFonts ();
  82.     InitWindows ();
  83.     InitMenus ();
  84.     TEInit ();
  85.     InitDialogs (NULL);        // use of ResumeProcs no longer approved by Apple
  86.     InitCursor ();
  87.     FlushEvents ( everyEvent, 0 );
  88.     
  89.     // how about some memory fun! Two should be enough!
  90.     MoreMasters ();
  91.     MoreMasters ();
  92.     }
  93.  
  94. /*
  95.     Let's setup those global variables that the DropShell uses.
  96.     
  97.     If you add any globals for your own use,
  98.     init them in the InitUserGlobals routine in DSUserProcs.c
  99. */
  100.  
  101. Boolean InitGlobals (void) 
  102. {
  103.     long aLong;
  104.  
  105.     gDone            = false;
  106.     gOApped            = false;    // probably not since users are supposed to DROP things!
  107.     gHasAppleEvents    = Gestalt ( gestaltAppleEventsAttr, &aLong ) == noErr;
  108.     gSplashScreen    = NULL;
  109.  
  110.     return(InitUserGlobals());    // call the user proc
  111. }
  112.  
  113. /*
  114.     Again, nothing fancy.  Just setting up the menus.
  115.     
  116.     If you add any menus to your DropBox - insert them here!
  117. */
  118.  
  119. void SetUpMenus (void) {
  120.  
  121. //    gAppleMenu = GetMenu ( kAppleNum );
  122. //    AppendResMenu ( gAppleMenu, 'DRVR' );
  123. //    InsertMenu ( gAppleMenu, 0 );
  124. //
  125. //    gFileMenu = GetMenu ( kFileNum );
  126. //    InsertMenu ( gFileMenu, 0 );
  127.     Handle aHand = NULL;
  128.     aHand = GetNewMBar(128);
  129.     if (aHand != NULL) {
  130.         SetMenuBar(aHand);
  131.         DrawMenuBar ();
  132.     } else {
  133.         Panic ( kResourceLoadError );
  134.     }
  135. }
  136.  
  137. /*
  138.     This routine is called during startup to display a splash screen.
  139.     
  140.     This was recommend by the Blue Team HI person, John Sullivan, who
  141.     feels that all apps should display something so that users can easily
  142.     tell what is running, and be able to switch by clicking.  Thanks John!
  143. */
  144.  
  145. void InstallSplashScreen(void) 
  146. {
  147.     #define windowPicID    128
  148.  
  149.     PicHandle    picH;
  150.  
  151.     if (!gSplashScreen) {  // show the splash screen window
  152.         picH = GetPicture(windowPicID);
  153.         if (picH) {
  154.             gSplashScreen = GetNewWindow(windowPicID, NULL, (WindowPtr)-1L);
  155.             if (gSplashScreen) {
  156.                 SetWindowPic(gSplashScreen, picH);
  157.                 // Don't show it here, since we only want to it for oapp launches!
  158.                 // ShowWindow(gSplashScreen);
  159.             }
  160.         }
  161.     }
  162. }
  163.  
  164.  
  165. /*    --------------- Standard Event Handling routines ---------------------- */
  166.  
  167. void ShowAbout () {
  168.     (void) Alert ( 128, NULL );
  169.     }
  170.  
  171.  
  172.  
  173. void DoMenu ( long retVal ) {
  174.     short    menuID, itemID;
  175.     Str255    itemStr;
  176.  
  177.     menuID = HiWord ( retVal );
  178.     itemID = LoWord ( retVal );
  179.     
  180.     switch ( menuID ) {
  181.         case kAppleNum:
  182.             if ( itemID == 1 )
  183.                 ShowAbout ();    /*    Show the about box */
  184.             else
  185.             {
  186.                 GetMenuItemText(GetMenuHandle(kAppleNum), itemID, itemStr);
  187.                 OpenDeskAcc(itemStr);
  188.             }
  189.             break;
  190.             
  191.         case kFileNum:
  192.             if ( itemID == 1 )
  193.                 SelectFile();        // call file selection userProc
  194.             else
  195.                 SendQuitToSelf();    // send self a 'quit' event
  196.             break;
  197.         
  198.         default:
  199.             break;
  200.             
  201.         }
  202.     HiliteMenu(0);        // turn it off!
  203.     }
  204.  
  205.  
  206.  
  207. void DoMouseDown ( EventRecord *curEvent ) {
  208.     WindowPtr    whichWindow;
  209.     short        whichPart;
  210.  
  211.     whichPart = FindWindow ( curEvent->where, &whichWindow );
  212.     switch ( whichPart ) {
  213.         case inMenuBar:
  214.             DoMenu ( MenuSelect ( curEvent->where ));
  215.             break;
  216.         
  217.         case inSysWindow:
  218.             SystemClick ( curEvent, whichWindow );
  219.             break;
  220.         
  221.         case inDrag:
  222.             {
  223.                 Rect    boundsRect = (*GetGrayRgn())->rgnBBox;
  224.                 DragWindow ( whichWindow, curEvent->where, &boundsRect );
  225.             }
  226.         default:
  227.             break;
  228.         }
  229.     }
  230.  
  231.  
  232.  
  233. void DoKeyDown ( EventRecord *curEvent ) {
  234.     if ( curEvent->modifiers & cmdKey )
  235.         DoMenu ( MenuKey ((char) curEvent->message & charCodeMask ));
  236.     }
  237.  
  238.  
  239.  
  240.  
  241. int main ( ) 
  242. {
  243.     InitToolbox ();
  244.  
  245.     if ( InitGlobals () ) {    // if we succeeding in initting self
  246.         if ( !gHasAppleEvents )
  247.             ErrorAlert ( kErrorStringsID, kCantRunError);
  248.         else {
  249.             InitAEVTStuff ();
  250.             SetUpMenus ();
  251.             InstallSplashScreen ();
  252.             
  253.             while ( !gDone ) {
  254.                 gWasEvent = WaitNextEvent ( everyEvent, &gEvent, 0, NULL );
  255.                 if ( gWasEvent ) {
  256.                     switch ( gEvent.what ) {
  257.                         case kHighLevelEvent:
  258.                             DoHighLevelEvent ( &gEvent );
  259.                             break;
  260.                             
  261.                         case mouseDown:
  262.                             DoMouseDown ( &gEvent );
  263.                             break;
  264.                             
  265.                         case keyDown:
  266.                         case autoKey:
  267.                             DoKeyDown ( &gEvent );
  268.                             break;
  269.  
  270.                         case diskEvt:
  271.                             if (HiWord(gEvent.message)) {
  272.                                 Point diskInitPt;
  273.                                 
  274.                                 diskInitPt.v = diskInitPt.h = 100;
  275.                                 DILoad();
  276.                                 DIBadMount(diskInitPt, gEvent.message);
  277.                                 DIUnload();
  278.                             }
  279.                             break;
  280.                             
  281.                         default:
  282.                             break;
  283.                     }
  284.                 }
  285.             }
  286.         }
  287.         DisposeUserGlobals();    // call the userproc to clean itself up
  288.     }
  289. }
  290.